        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
            color: #333;
        }

        header {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
            padding: 10px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .top-bar {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .menu-btn {
            background: rgba(255,255,255,0.2);
            border: none;
            padding: 10px 15px;
            color: white;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
        }

        .menu-btn:hover {
            background: rgba(255,255,255,0.3);
        }

        .user-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .login-btn {
            background: white;
            color: #ff6b35;
            border: none;
            padding: 8px 20px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        nav {
            background: white;
            border-bottom: 3px solid #ff6b35;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-links {
            display: flex;
            gap: 25px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 14px;
            text-transform: uppercase;
        }

        .nav-links a:hover {
            color: #ff6b35;
        }

        .nav-links a.active {
            color: #ff6b35;
            border-bottom: 2px solid #ff6b35;
            padding-bottom: 3px;
        }

        .logo-section {
            text-align: center;
            padding: 30px 20px;
            background: white;
            position: relative;
        }

        .logo-section h1 {
            font-size: 56px;
            font-weight: 900;
            color: #ff6b35;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }

        .logo-section p {
            color: #666;
            font-style: italic;
            font-size: 16px;
        }

        .date {
            color: #999;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .subscribe-btn {
            position: absolute;
            right: 20px;
            top: 20px;
            background: linear-gradient(135deg, #ffa726 0%, #ff6b35 100%);
            color: white;
            padding: 12px 25px;
            border: none;
            cursor: pointer;
            font-weight: 700;
            font-size: 14px;
            box-shadow: 0 4px 15px rgba(255,107,53,0.3);
            transition: all 0.3s;
        }

        .subscribe-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255,107,53,0.4);
        }

        .tabs {
            background: #fff;
            border-bottom: 2px solid #f0f0f0;
        }

        .tabs-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            gap: 30px;
        }

        .tab {
            padding: 15px 0;
            cursor: pointer;
            color: #666;
            font-weight: 500;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
            font-size: 14px;
        }

        .tab:hover {
            color: #ff6b35;
        }

        .tab.active {
            color: #ff6b35;
            border-bottom: 3px solid #ff6b35;
        }

        .main-container {
            max-width: 1400px;
            margin: 30px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        .featured-section {
            background: white;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
            margin-bottom: 30px;
        }

        .featured-image {
            position: relative;
            height: 400px;
            background: #000;
            overflow: hidden;
        }

        .featured-image video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-content {
            padding: 25px;
            background: white;
        }

        .category-tag {
            display: inline-block;
            background: #ff6b35;
            color: white;
            padding: 5px 12px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .featured-content h2 {
            font-size: 28px;
            color: #000;
            margin-bottom: 12px;
            line-height: 1.3;
            font-weight: 700;
        }

        .featured-content p {
            color: #666;
            font-size: 16px;
            line-height: 1.5;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .news-card {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }

        .news-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .news-card-content {
            padding: 20px;
        }

        .category-tag-small {
            display: inline-block;
            background:  #ff6b35;
            color: white;
            padding: 4px 10px;
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .news-card-content h3 {
            font-size: 18px;
            color: #000;
            line-height: 1.4;
            font-weight: 600;
        }

        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .newsletter-box {
            background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
            padding: 30px;
            color: white;
            box-shadow: 0 4px 15px rgba(255,107,53,0.2);
        }

        .newsletter-box h3 {
            font-size: 28px;
            margin-bottom: 10px;
            color: #fff;
        }

        .newsletter-box p {
            margin-bottom: 20px;
            opacity: 0.95;
        }

        .newsletter-box input {
            width: 100%;
            padding: 12px;
            border: 2px solid rgba(255,255,255,0.3);
            background: rgba(255,255,255,0.1);
            margin-bottom: 15px;
            color: white;
            font-size: 14px;
        }

        .newsletter-box input::placeholder {
            color: rgba(255,255,255,0.7);
        }

        .newsletter-box button {
            width: 100%;
            padding: 12px;
            background: white;
            color: #ff6b35;
            border: none;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s;
        }

        .newsletter-box button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .news-section {
            background: white;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .news-section h2 {
            font-size: 32px;
            color: #ff6b35;
            margin-bottom: 20px;
            font-style: italic;
        }

        .news-item {
            padding: 20px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-item h3 {
            color: #333;
            font-size: 18px;
            margin-bottom: 8px;
            line-height: 1.4;
            cursor: pointer;
            transition: color 0.3s;
        }

        .news-item h3:hover {
            color: #ff6b35;
        }

        .news-time {
            color: #999;
            font-size: 13px;
        }

        @media (max-width: 968px) {
            .main-container {
                grid-template-columns: 1fr;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .nav-links {
                flex-wrap: wrap;
                gap: 15px;
            }

            .logo-section h1 {
                font-size: 40px;
            }

            .subscribe-btn {
                position: static;
                margin-top: 15px;
                width: 100%;
            }
        }